body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color:Linen;
}

* {
  margin: 0;
  box-sizing: border-box;
}

header { 
    font-family: Arial, sans-serif;
    text-align:right;
    background-color: White;
    padding:.5px;
    margin-right:5px;
   padding-right:2%;
}
.gallery {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

/* The navbar container */
.topnav {
  overflow: hidden;
  background-color: rgba(100,100,100,.7);
  font-family: Arial, sans-serif;
  padding-right:2% 
}

/* Navbar links */
.topnav a {
  float: right;
  display: block;
  color: linen;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

/* Links - change color on hover */
.topnav a:hover {
  background-color: rgba(30,30,30,.3);
  color: black;
}

/* Navbar container */
.navbar {
  overflow: hidden;
  background-color: #333;
  font-family: Arial;
}

/* Links inside the navbar */
.navbar a {
  float: left;
  font-size: 16px;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

/* The dropdown container */
.dropdown {
  float: right;
  overflow: hidden;
}

/* Dropdown button */
.dropdown .dropbtn {
  font-size: 16px;
  border: none;
  outline: none;
  color: linen;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit; /* Important for vertical align on mobile phones */
  margin: 0; /* Important for vertical align on mobile phones */
}

/* Add the same mid grey background color to navbar links on hover  as for the other nav items*/
.navbar a:hover, .dropdown:hover .dropbtn {
  background-color:rgba(30,30,30,.3);
}

/* Dropdown content (hidden by default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

/* Add a grey background color to dropdown links on hover */
.dropdown-content a:hover {
  background-color: #ddd;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

/* the end of my paste for the navbar drop-down menu */

.column {
    flex: 1;
    padding: 10px;
    text-align: center;
}

.image-container {
    margin-bottom: 20px;
}

.image-container img {
    width: 100%;
    cursor: pointer;
    transition: transform 0.2s;
}

.image-container img:hover {
    transform: scale(1.05);
}

.image-container p {
    margin-top: 5px;
    font-size: 14px;
    color: #555;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 100%;
    max-height: 100%;
}

.modal-description {
    margin-top: 10px;
    font-size: 18px;
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}
